home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / S / SurferPlus / makefile < prev    next >
Encoding:
Makefile  |  1990-12-03  |  1.4 KB  |  57 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Products Presents
  3. #
  4. #    S U R F E R    ----- A CommToolbox Sample Application
  5. #
  6. #    Based on the MacDTS Simple Sample Application
  7. #
  8. #    SurferPlus.r    -    Rez Source
  9. #
  10. #    Copyright © 1988-9 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    Sample 1.1                    8/90
  14. #                Sample 1.0                    08/88
  15. #                Sample 1.01                    11/88
  16. #                Surfer 0.5                    08/89
  17. #                SurerPlus 1.0                8/90
  18.  
  19. #    Directions - copy the interface files and library file as below:
  20. #
  21. #        duplicate "Interfaces 1:Interfaces:PInterfaces:"≈             {PInterfaces}
  22. #        duplicate "Interfaces 1:Interfaces:CIncludes:"≈             {CIncludes}
  23. #        duplicate "Interfaces 1:Interfaces:RIncludes:"≈             {RIncludes}
  24. #
  25. #        duplicate "Interfaces 1:ToolInterfaces:PInterfaces:"≈         {PInterfaces}
  26. #        duplicate "Interfaces 1:ToolInterfaces:CIncludes:"≈         {CIncludes}
  27. #
  28. #        duplicate "Interfaces 1:Libraries:Libraries:"≈                 {Libraries}
  29. #
  30. #    make SurferPlus > makeit
  31. #    makeit
  32.  
  33.  
  34. header.dump ƒƒ Makefile header.c
  35.         echo "`date -s` -- Creating C header dumpfile"
  36.         c header.c -o header.c.o
  37.  
  38. Objs        = SurferPlus.p.o ∂
  39.         support.c.o ∂
  40.         domouse.c.o ∂
  41.         "{Libraries}"Runtime.o ∂
  42.         "{Libraries}"Interface.o ∂
  43.         "{Libraries}"CommToolbox.o ∂
  44.         "{PLibraries}"PasLib.o
  45.  
  46. SurferPlus        ƒƒ header.dump {Objs} makefile 
  47.                 Link -o {Targ} {Objs}
  48.                 SetFile {Targ} -t APPL -c 'SurF' -a B
  49.  
  50. SurferPlus        ƒƒ SurferPlus.r SurferPlus.h makefile
  51.                 Rez -rd -o {Targ} SurferPlus.r -append
  52.  
  53.  
  54. SurferPlus.p.o        ƒƒ makefile
  55. support.c.o            ƒƒ makefile
  56. domouse.c.o            ƒƒ makefile
  57.